home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / system-config-printer / installpackage.py < prev    next >
Text File  |  2009-10-19  |  1KB  |  37 lines

  1. #!/usr/bin/env python
  2.  
  3. ## system-config-printer
  4.  
  5. ## Copyright (C) 2008, 2009 Red Hat, Inc.
  6. ## Copyright (C) 2008, 2009 Tim Waugh <twaugh@redhat.com>
  7.  
  8. ## This program is free software; you can redistribute it and/or modify
  9. ## it under the terms of the GNU General Public License as published by
  10. ## the Free Software Foundation; either version 2 of the License, or
  11. ## (at your option) any later version.
  12.  
  13. ## This program is distributed in the hope that it will be useful,
  14. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ## GNU General Public License for more details.
  17.  
  18. ## You should have received a copy of the GNU General Public License
  19. ## along with this program; if not, write to the Free Software
  20. ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. import os
  23. import glib
  24.  
  25. class PackageKit:
  26.     def __init__ (self):
  27.         for dir in os.environ.get ("PATH", "").split (":"):
  28.             path = dir + os.path.sep + "gpk-install-package-name"
  29.             if os.access (path, os.X_OK):
  30.                 self.gpk_install_package_name = path
  31.                 return
  32.  
  33.         raise RuntimeError, "No gpk-install-package-name program available"
  34.  
  35.     def InstallPackageName (self, xid, timestamp, name):
  36.         glib.spawn_async ([self.gpk_install_package_name, name])
  37.